Contents | Index | < Browse | Browse >
LETTERfputsULETTER
Puts a string into a file.
Overview
#include <stdio.h>
r = fputs(s, f)
int r;
const char *s;
FILE *f;
Portability
ANSI
Description
This function writes a string (which as usual needs to be terminated with a
zero byte) into the file "f". The zero byte will be replaced by a "\n"
linefeed.